home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / mintprgs / mintupgr / disk8.zoo / init.zoo / etc / profile < prev    next >
Text File  |  1992-11-03  |  308b  |  18 lines

  1. # Startup file for bash login shells.
  2. #
  3. default_dir=c:/usr/lib
  4.  
  5. ignoreeof=3
  6.  
  7. LOGIN_SHELL=true
  8.  
  9. # If the user has her own init file, then use that one, else use the
  10. # canonical one.
  11. if [ -f ~/bash.rc ]; then
  12.   source ~/bash.rc
  13. else if [ -f ${default_dir}Bashrc ]; then
  14.   source ${default_dir}Bashrc;
  15.   fi
  16. fi
  17.  
  18.